home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / hypercar / mactool / thinkcgu.sit / app ƒ / comline.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-08-28  |  590 b   |  30 lines

  1. /*
  2. *    FILE:        comline.h
  3. *    AUTHOR:        R. Gonzalez
  4. *    CREATED:    August 25, 1990
  5. *
  6. *    Defines command line class for Command_App.
  7. */
  8.  
  9. # ifndef    comline_h
  10. # define    comline_h
  11.  
  12. # include    "class.h"
  13.  
  14. /************************************************************************
  15. *    command line
  16. ************************************************************************/
  17. struct    Comline:Generic_Class
  18. {
  19.     char            *line;
  20.     int                start_next_argument;
  21.     
  22.     boolean            init(void);
  23.     virtual boolean    read(void);
  24.     virtual void    get_command(char[]);
  25.     virtual void    get_next_argument(char[]);
  26.     boolean            destroy(void);
  27. };
  28.  
  29. # endif
  30.